home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 September / Macworld (1998-09).dmg / Serious Demos / MacWebCam 2.7 / Sample AppleScripts / Caption scripts < prev    next >
Text File  |  1997-01-12  |  639b  |  16 lines

  1. -- Example AppleScript to show how to get/set various caption parameters
  2.  
  3. tell application "MacWebCam"
  4.     get message of caption 1 of active document
  5.     get position of caption 1 of active document
  6.     get style of caption 1 of active document
  7.     get font of caption 1 of active document
  8.     get color of caption 1 of active document
  9.     get size of caption 1 of active document
  10.     get horizontal justification of caption 1 of active document
  11.     get vertical justification of caption 1 of active document
  12.     --set message of caption 1 of active document to "new caption"
  13.     --set horizontal justification of caption 1 of active document to left
  14.     -- etc
  15. end tell
  16.